2.4.3. Turbine

Turbine

在复杂的分布式系统中,相同服务的节点经常需要部署上百甚至上千个,很多时候,运维人员希望能够把相同服务的节点状态以一个整体集群的形式展现出来,这样可以更好的把握整个系统的状态。 为此,Netflix提供了一个开源项目(Turbine)来提供把多个hystrix.stream的内容聚合为一个数据源供Dashboard展示。

和Hystrix Dashboard一样,Turbine也可以下载war包部署到Web容器,本文不做赘述。下面讨论Spring Cloud是怎么使用Turbine的。

代码示例

新建Maven项目,并在pom.xml中添加如下内容:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>microservice-hystrix-turbine</artifactId>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>com.itmuch.cloud</groupId>
  9. <artifactId>spring-cloud-microservice-study</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.cloud</groupId>
  15. <artifactId>spring-cloud-starter-turbine</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-netflix-turbine</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-actuator</artifactId>
  24. </dependency>
  25. </dependencies>
  26. </project>

启动类:TurbineApplication.java

  1. /**
  2. * 通过@EnableTurbine接口,激活对Turbine的支持。
  3. * @author eacdy
  4. */
  5. @SpringBootApplication
  6. @EnableTurbine
  7. public class TurbineApplication {
  8. public static void main(String[] args) {
  9. new SpringApplicationBuilder(TurbineApplication.class).web(true).run(args);
  10. }
  11. }

配置文件:application.yml

  1. spring:
  2. application.name: microservice-hystrix-turbine
  3. server:
  4. port: 8031
  5. security.basic.enabled: false
  6. turbine:
  7. aggregator:
  8. clusterConfig: default # 指定聚合哪些集群,多个使用","分割,默认为default。可使用http://.../turbine.stream?cluster={clusterConfig之一}访问
  9. appConfig: microservice-consumer-movie-feign-with-hystrix-stream,microservice-consumer-movie-ribbon-with-hystrix ### 配置Eureka中的serviceId列表,表明监控哪些服务
  10. clusterNameExpression: new String("default")
  11. # 1. clusterNameExpression指定集群名称,默认表达式appName;此时:turbine.aggregator.clusterConfig需要配置想要监控的应用名称
  12. # 2. 当clusterNameExpression: default时,turbine.aggregator.clusterConfig可以不写,因为默认就是default
  13. # 3. 当clusterNameExpression: metadata['cluster']时,假设想要监控的应用配置了eureka.instance.metadata-map.cluster: ABC,则需要配置,同时turbine.aggregator.clusterConfig: ABC
  14. eureka:
  15. client:
  16. serviceUrl:
  17. defaultZone: http://discovery:8761/eureka/
  18. ### 参考:http://blog.csdn.net/liaokailin/article/details/51344281
  19. ### 参考:http://blog.csdn.net/zhuchuangang/article/details/51289593

这样一个Turbine微服务就编写完成了。

Turbine测试

  1. 启动项目:microservice-discovery-eureka
  2. 启动项目:microservice-provider-user
  3. 启动项目:microservice-consumer-movie-ribbon-with-hystrix
  4. 启动项目:microservice-consumer-movie-feign-with-hystrix-stream
  5. 启动项目:microservice-hystrix-dashboard
  6. 启动项目:microservice-hystrix-turbine(即本例)
  7. 访问:http://localhost:8011/ribbon/1,调用ribbon接口
  8. 访问:http://localhost:8022/feign/1,调用feign接口
  9. 访问:http://localhost:8031/turbine.stream,可查看到和Hystrix监控类似的内容:
  1. data: {"rollingCountFallbackSuccess":0,"rollingCountFallbackFailure":0,"propertyValue_circuitBreakerRequestVolumeThreshold":20,"p

并且会不断刷新以获取实时的监控数据。同样的,我们可以将这些文本内容放入到Dashboard中展示。

访问Hystrix Dashboard:http://localhost:8030/hystrix.stream,并将http://localhost:8031/turbine.stream输入到其上的输入框,并随意指定一个Title,如下图:

turbine-index

将会查看到如下的图表,有图可见,我们把两个项目的API都监控了:

turbine-chart

TIPS

  1. 项目microservice-consumer-movie-ribbon-with-hystrixmicroservice-consumer-movie-feign-with-hystrix-stream 需要配置不同的主机名,并将preferIpAddress设为false或者不设置,否则将会造成在单个主机上测试,Turbine只显示一个图表的情况。项目的代码已经修改好并注释了,这边友情提示一下。

  2. 配置项:turbine.clusterNameExpressionturbine.aggregator.clusterConfig的关系:

turbine.clusterNameExpression取值 turbine.aggregator.clusterConfig 取值
默认(appName) 配置想要聚合的项目,此时使用turbine.stream?cluster=项目名称大写访问监控数据
new String(“default”) 或者”‘default’” 不配置,或者配置default,因为默认就是default
metadata[‘cluster’];同时待监控的项目配置了类似:eureka.instance.metadata-map.cluster: ABC 也设成ABC,需要和待监控的项目配置的eureka.instance.metadata-map.cluster一致。

具体可以关注org.springframework.cloud.netflix.turbine.CommonsInstanceDiscoveryorg.springframework.cloud.netflix.turbine.EurekaInstanceDiscovery两个类。特别关注一下org.springframework.cloud.netflix.turbine.EurekaInstanceDiscovery.marshall(InstanceInfo)方法。

参考文档

http://blog.csdn.net/liaokailin/article/details/51344281

http://stackoverflow.com/questions/31468227/whats-for-the-spring-cloud-turbine-clusternameexpression-config-mean